home *** CD-ROM | disk | FTP | other *** search
/ MacAddict 103 / MacAddict_103_2005-03.iso / Software / Internet & Communication / Salling Clicker 2.2.dmg / SallingClicker.pkg / Contents / Resources / postinstall < prev    next >
Encoding:
Text File  |  2004-07-19  |  657 b   |  11 lines

  1. #!/usr/bin/perl
  2.  
  3. $target = $ARGV[2];
  4.  
  5. # Remove old login items
  6. system("/usr/bin/osascript -e \'tell application \"System Events\"\' -e \'delete login item \"SEC Helper\"\' -e \'end tell\' &");
  7. system("/usr/bin/osascript -e \'tell application \"System Events\"\' -e \'delete login item \"Sony Ericsson Clicker Helper\"\' -e \'end tell\' &");
  8. # Add new login item
  9. system("/usr/bin/osascript -e \'tell application \"System Events\"\' -e \'make new login item at end of login items with properties {path:\"$target/Library/PreferencePanes/Salling Clicker.prefPane/Contents/MacOS/SEC Helper.app\", kind:\"APPLICATION\", hidden:true}\' -e \'end tell\' &");
  10.  
  11. exit 0